[Installation Instructions] - FOR CLEAN INSTALL ONLY

1. Upload the contents of the upload/ folder to your XenForo root.
2. Import XML file "addon-sonnbStopSpamHere.xml" from your AdminCP.
3. Additional template edit
	a. If you are using TMS (Template Modification System - http://xenforo.com/community/resources/template-modification-system-tms.293):
		- There is no manual template edit since you already have 
		TMS installed. All the template changes would be applied using TMS
	b. If you do have have TMS installed:
		- register_form  Add hidden field hook to registration form:
			+ Open template "register_form"
			+ Search for: 
				<input type="hidden" name="_xfToken" value="{$visitor.csrf_token_page}" />
			+ Insert Before/After: 
				<xen:hook name="sonnb_stop_spam_register" />
		- thread_view  Add inline moderation task to post:
			+ Open template "thread_view"
			+ Search for:
				<xen:if is="{$inlineModOptions.delete}"><option value="delete">{xen:phrase delete_posts}...</option></xen:if>
			+ Insert Before/After: 
				<xen:hook name="sonnb_stop_spam_thread_view_delete" />
		- member_view  Add inline moderation task to profile post
			+ Open template "member_view"
			+ Search for:
				<xen:if is="{$inlineModOptions.delete}"><option value="delete">{xen:phrase delete_posts}</option></xen:if>
			+ Insert Before/After: 
				<xen:hook name="sonnb_stop_spam_profile_post_delete" />
		- inline_mod_controls_thread  Add inline moderation task to thread list
			+ Open template "inline_mod_controls_thread"
			+ Search for:
				<xen:if is="{$inlineModOptions.delete}"><option value="delete">{xen:phrase delete_threads}...</option></xen:if>
			+ Insert Before/After: 
				<xen:hook name="sonnb_stop_spam_thread_list_delete" />
				
4. Install bot checking services addon:
	- Why?
		+ These service's ToS do not allow to include their API inside paid script
		So it must be standalone addon. I have included them inside this pack for
		easier to begin the installation
	- Install
		+ Import XMLs inside folder "xml-to-import". 
		+ Currently we have 4 bot checking services: Stop Forum Spam, SpamBusted, FSpamlist, BotScout.
		It is not required to install all of them but we recommend to install at least Stop Forum Spam
		and SpamBusted as they do not require API to query and allow a lot of query into their Database.
	- Configuration:
		+ After installed, each bot checking API would have separate option inside your AdminCP options,
		please go there and configure your own API key. API key is optionally for Stop Forum Spam and SpamBusted
		on query but is required on submission so please make sure you have all of them with API key configured.

==========